home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / swat_overflow.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  70 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5. if(description)
  6. {
  7.  script_id(13660);
  8.  script_bugtraq_id(10780);
  9.  script_cve_id("CAN-2004-0600");
  10.  script_version ("$Revision: 1.3 $");
  11.  
  12.  
  13.  name["english"] = "SWAT overflow";
  14.  script_name(english:name["english"]);
  15.  
  16.  desc["english"] = "
  17. The remote host is running SWAT - a web-based administration tool for
  18. Samba.
  19.  
  20. There is a buffer overflow condition in the remote version of this software
  21. which might allow an attacker to execute arbitrary code on the remote host
  22. by sending a malformed authorization request (or any malformed base64 data).
  23.  
  24. Solution : Upgrade to Samba 3.0.5
  25. Risk factor : High";
  26.  
  27.  script_description(english:desc["english"]);
  28.  
  29.  summary["english"] = "SWAT overflow";
  30.  script_summary(english:summary["english"]);
  31.  
  32.  script_category(ACT_DESTRUCTIVE_ATTACK); # Or ACT_ATTACK ? Swat is started from inetd after all...
  33.  
  34.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  35.  family["english"] = "Gain root remotely";
  36.  script_family(english:family["english"]);
  37.  
  38.  script_dependencie("swat_detect.nasl");
  39.  script_require_ports("Services/swat", 901);
  40.  exit(0);
  41. }
  42.  
  43. #
  44. # The script code starts here
  45. #
  46. include("http_keepalive.inc");
  47. include("http_func.inc");
  48.  
  49. port = get_kb_item("Services/swat");
  50. if(!port) port = 901;
  51.  
  52. if (get_port_state(port))
  53. {
  54.  req = string("GET / HTTP/1.0\r\nAuthorization: Basic aaa=\r\n\r\n");
  55.  soc = http_open_socket(port);
  56.  if ( ! soc ) exit(0);
  57.  send(socket:soc, data:req);
  58.  res = http_recv(socket:soc);
  59.  close(soc);
  60.  if ( ! res || 'realm="SWAT"' >!< res ) exit(0);
  61.  
  62.  req = string("GET / HTTP/1.0\r\nAuthorization: Basic =\r\n\r\n");
  63.  soc = http_open_socket(port);
  64.  if ( ! soc ) exit(0);
  65.  send(socket:soc, data:req);
  66.  res = http_recv(socket:soc);
  67.  close(soc);
  68.  if ( ! res ) security_hole(port);
  69.